home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ PCMCIA.xpl
< prev
next >
Wrap
Text File
|
2000-08-07
|
1KB
|
42 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Hardware\PCMCIA"
"NAME"="PCMCIA Card Settings"
"VERSION"="1.00"
"LANGUAGE"="VBScript"
"TEXT 1"="Disable Display Warning on card removal"
"DESCRIPTION 1"="PCMCIA card removal warning."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
Sub Plugin_Initialize
i=RegReadValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray\PCMCIAFlags")
if i=1 then SetUIElement 1,true
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray\PCMCIAFlags","1",2)
else
Call RegWriteValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray\PCMCIAFlags","0",2)
end if
End Sub
Sub Plugin_Terminate
End Sub